home *** CD-ROM | disk | FTP | other *** search
/ Plug-In Power Pack for Netscape Communicator / Plug-In Power Pack for Netscape Communicator.iso / plugins / dataviews / dvdraw / examples / datasource / genericlistctrl.h < prev    next >
C/C++ Source or Header  |  1997-05-08  |  867b  |  47 lines

  1. // GenericListCtrl.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CGenericListCtrl window
  6.  
  7. #ifndef GENERICLISTCONTROL_H
  8. #define GENERICLISTCONTROL_H
  9.  
  10. #include <afxcmn.h>
  11. #include "resource.h"
  12.  
  13.  
  14. class CGenericListCtrl : public CListCtrl
  15. {
  16. // Construction
  17. public:
  18.     CGenericListCtrl();
  19.  
  20. // Attributes
  21. public:
  22.  
  23. // Operations
  24. public:
  25.  
  26. // Overrides
  27.     // ClassWizard generated virtual function overrides
  28.     //{{AFX_VIRTUAL(CGenericListCtrl)
  29.     //}}AFX_VIRTUAL
  30.  
  31. // Implementation
  32. public:
  33.     virtual ~CGenericListCtrl();
  34.  
  35.     // Generated message map functions
  36. protected:
  37.     //{{AFX_MSG(CGenericListCtrl)
  38.     afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  39.     //}}AFX_MSG
  40.  
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45.  
  46. #endif
  47.